home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / gl_dev.idb / usr / share / src / OpenGL / toolkits / libisfast / isfast.h.z / isfast.h
Encoding:
C/C++ Source or Header  |  1996-03-15  |  717 b   |  38 lines

  1. /*****************************************************************************
  2.  * isfast - routines for *subjective* tests of OpenGL performance
  3.  *****************************************************************************/
  4.  
  5.  
  6.  
  7. #ifndef __ISFAST_H__
  8. #define __ISFAST_H__
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13.  
  14. int IsFastOpenWindow(const char* attributes, const char* title);
  15. void IsFastCloseWindow(void);
  16.  
  17. int DepthBufferingIsFast(void);
  18. int ImmediateModeIsFast(void);
  19. int LineAAIsFast(void);
  20. int StencillingIsFast(void);
  21. int TextureMappingIsFast(void);
  22.  
  23.  
  24.  
  25. #ifdef X11
  26. int IsFastXOpenDisplay(const char* displayName);
  27. void IsFastXCloseDisplay(void);
  28. #endif
  29.  
  30.  
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif /* !__ISFAST_H__ */
  36.  
  37.  
  38.